home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000321_news@watsun.cc.columbia.edu _Sat Mar 6 13:04:45 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id NAA29481
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 6 Mar 1999 13:04:45 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA28742
  7.     for kermit.misc@watsun.cc.columbia.edu; Sat, 6 Mar 1999 12:55:09 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Screen Configuration
  11. Date: 6 Mar 1999 17:55:07 GMT
  12. Organization: Columbia University
  13. Message-ID: <7brq5r$s23$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@mailrelay2.cc.columbia.edu
  15.  
  16. In article <36E167F2.F4E553FA@globalnet.co.uk>,
  17. Tim Hedger  <hedger@globalnet.co.uk> wrote:
  18. : When I start Kermit (under Redhat Linux 5.2), it complains about not
  19. : being able to recognise my terminal type - I've tried all the obvious
  20. : terminal types - which ones can I use?  Or can I get it to recognise
  21. : xterm?  This is the output I get:
  22. : Warning: terminal type unknown: "xterm"
  23. : Fullscreen file transfer display disabled.
  24. : Executing /etc/kermit/ckermit.ini for UNIX ...
  25. : Sorry, terminal type unknown: "xterm"
  26. : Executing /etc/kermit/ckermit.local.ini ...
  27. At startup, C-Kermit calls getenv("TERM") to find out your terminal type.
  28. Then it calls tgetent() on the result to make sure it can use the curses
  29. library, since if you try to initialize curses with an unknown terminal
  30. type, it can halt the application.  However in your case, tgetent() says
  31. it never heard of "xterm".
  32.  
  33. With all the confusion amongst Linux versions and packages over the
  34. [n]curses, terminfo, and termcap libraries (not to mention libc vs glibc),
  35. I'm not surprised, but there's not much I can do about it.  It works
  36. everywhere else.
  37.  
  38. It's a Linux configuration problem.  "man tgetent" for further info.
  39. Hmmm, well I just tried that on RH 5.2 and there is no man entry.  Nor is
  40. there an "info tgetent" entry.
  41.  
  42. In any case, if there is some "new way" of determining in advance if it's
  43. safe to initialize curses in Linux, I'd like to hear about it.
  44.  
  45. - Frank